home *** CD-ROM | disk | FTP | other *** search
/ Champak 33 / Volume 33 - JOGO DISK .iso / Games / rocketman.swf / scripts / DefineSprite_38_Pickup / frame_1 / DoAction.as
Encoding:
Text File  |  2007-01-12  |  274 b   |  11 lines

  1. onEnterFrame = function()
  2. {
  3.    if(_parent.superg.hitTest(this) && !_parent.superg.dead)
  4.    {
  5.       _root.knuggs += _parent.snumber;
  6.       parent.pickUp = null;
  7.       _parent.addPopUp(_X,_Y,"Knugg: +" + _parent.snumber,3);
  8.       this.gotoAndPlay("remove");
  9.    }
  10. };
  11.